home *** CD-ROM | disk | FTP | other *** search
/ Paparazzi!: Tales of Tinseltown / Paparazzi - Tales of Tinseltown (1995)(Activision)(Disc 1 of 2).iso / pprazia2.dir / 01527_Script_1527 < prev    next >
Text File  |  1995-05-21  |  746b  |  40 lines

  1. on mouseDown
  2.   global whichShot, shotTemp
  3.   if whichShot > 2 then 
  4.     exit
  5.   else
  6.     put the movieTime of sprite 48 into shotTemp
  7.     puppetsound "camclick.aif"
  8.     
  9.     put "SnapBtn" into f
  10.     put "SnapBtnHL" into fHL
  11.     hiliter 7, f, fHL
  12.   end if
  13. end
  14.  
  15.  
  16.  
  17. on mouseUp
  18.   global gTheDay, snap1, snap2, whichShot, shotTemp
  19.   if whichShot > 2 then 
  20.     exit
  21.   else
  22.      if whichShot = 1 then
  23.       put shotTemp into snap1
  24.       set whichShot = 2
  25.       puppetsound 0
  26.       go frame "Po1"
  27.       exit
  28.     else
  29.       put shotTemp into snap2
  30.       set whichShot = 3
  31.       puppetsound 0
  32.       go frame "Po2"
  33.       exit
  34.     end if
  35.   end if
  36.   startTimer
  37.   repeat while the timer < 10
  38.   end repeat
  39.   puppetsound 0
  40. end